add to a list python

25

months = ['January', 'February', 'March']
months.append('April')
print(months)

Comments

Submit
0 Comments